home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Presentations / Presentations ’93 / Macintosh as Internet Server ƒ / inetd / talkd / U_talkd.h < prev   
Encoding:
C/C++ Source or Header  |  1993-03-16  |  3.8 KB  |  101 lines  |  [TEXT/MPS ]

  1. /*
  2.  * Copyright (c) 1983 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that the above copyright notice and this paragraph are
  7.  * duplicated in all such forms and that any documentation,
  8.  * advertising materials, and other materials related to such
  9.  * distribution and use acknowledge that the software was developed
  10.  * by the University of California, Berkeley.  The name of the
  11.  * University may not be used to endorse or promote products derived
  12.  * from this software without specific prior written permission.
  13.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  14.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  15.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16.  *
  17.  *    @(#)talkd.h    5.3 (Berkeley) 7/9/88
  18.  */
  19. #include <sys/types.h>
  20. #include <sys/socket.h>
  21. /*
  22.  * This describes the protocol used by the talk server and clients.
  23.  *
  24.  * The talk server acts a repository of invitations, responding to
  25.  * requests by clients wishing to rendezvous for the purpose of
  26.  * holding a conversation.  In normal operation, a client, the caller,
  27.  * initiates a rendezvous by sending a CTL_MSG to the server of
  28.  * type LOOK_UP.  This causes the server to search its invitation
  29.  * tables to check if an invitation currently exists for the caller
  30.  * (to speak to the callee specified in the message).  If the lookup
  31.  * fails, the caller then sends an ANNOUNCE message causing the server
  32.  * to broadcast an announcement on the callee's login ports requesting
  33.  * contact.  When the callee responds, the local server uses the
  34.  * recorded invitation to respond with the appropriate rendezvous
  35.  * address and the caller and callee client programs establish a
  36.  * stream connection through which the conversation takes place.
  37.  */
  38.  
  39. #ifdef NTALK // HACKHACK
  40. #include <netinet/in.h>
  41. #include <netdb.h>
  42. #define sockaddr sockaddr_in
  43. #endif
  44.  
  45. /*
  46.  * Client->server request message format.
  47.  */
  48. typedef struct {
  49.     u_char    vers;        /* protocol version */
  50.     u_char    type;        /* request type, see below */
  51.     u_char    answer;        /* not used */
  52.     u_char    pad;
  53.     u_long    id_num;        /* message id */
  54.     struct    sockaddr addr;
  55.     struct    sockaddr ctl_addr;
  56.     long    pid;        /* caller's process id */
  57. #define    NAME_SIZE    12
  58.     char    l_name[NAME_SIZE];/* caller's name */
  59.     char    r_name[NAME_SIZE];/* callee's name */
  60. #define    TTY_SIZE    16
  61.     char    r_tty[TTY_SIZE];/* callee's tty name */
  62. } CTL_MSG;
  63.  
  64. /*
  65.  * Server->client response message format.
  66.  */
  67. typedef struct {
  68.     u_char    vers;        /* protocol version */
  69.     u_char    type;        /* type of request message, see below */
  70.     u_char    answer;        /* respose to request message, see below */
  71.     u_char    pad;
  72.     u_long    id_num;        /* message id */
  73.     struct    sockaddr addr;    /* address for establishing conversation */
  74. } CTL_RESPONSE;
  75.  
  76. #define    TALK_VERSION    1        /* protocol version */
  77.  
  78. /* message type values */
  79. #define LEAVE_INVITE    0    /* leave invitation with server */
  80. #define LOOK_UP        1    /* check for invitation by callee */
  81. #define DELETE        2    /* delete invitation by caller */
  82. #define ANNOUNCE    3    /* announce invitation by caller */
  83.  
  84. /* answer values */
  85. #define SUCCESS        0    /* operation completed properly */
  86. #define NOT_HERE    1    /* callee not logged in */
  87. #define FAILED        2    /* operation failed for unexplained reason */
  88. #define MACHINE_UNKNOWN    3    /* caller's machine name unknown */
  89. #define PERMISSION_DENIED 4    /* callee's tty doesn't permit announce */
  90. #define UNKNOWN_REQUEST    5    /* request has invalid type value */
  91. #define    BADVERSION    6    /* request has invalid protocol version */
  92. #define    BADADDR        7    /* request has invalid addr value */
  93. #define    BADCTLADDR    8    /* request has invalid ctl_addr value */
  94.  
  95. /*
  96.  * Operational parameters.
  97.  */
  98. #define MAX_LIFE    60    /* max time daemon saves invitations */
  99. /* RING_WAIT should be 10's of seconds less than MAX_LIFE */
  100. #define RING_WAIT    30    /* time to wait before resending invitation */
  101.